body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #FDE8E4;
  color: #4B2E2E;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}


@keyframes fadeSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  max-width: 1000px;
  background-color: #523122;
  border-radius: 50px;
  height: 50px;
  z-index: 1000;
  padding: 0 20px;
  box-sizing: border-box;
}

.navbar-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links li {
  display: inline-block; 
  margin: 0 15px; 
}

.nav-links li a {
  display: inline-block;
  text-decoration: none;
  color: white;
  font-family: "Montserrat", sans-serif;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.nav-links li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}


h1 {
  text-align: center;
  font-size: 3em;
  margin: 40px 0 20px;
  font-weight: 800;
  animation: fadeIn 1.2s ease-in-out;
}

main {
  flex-grow: 1;
  padding-top: 70px; 
  padding-bottom: 50px; 
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 2em;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
  background-color: rgba(253, 232, 228, 0.7);
  position: relative;
  z-index: 2;
  border: 2px solid #2E1E1E;
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  animation: fadeSlideDown 1s ease-out;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 30px; 
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

input, textarea {
  border: none;
  border-bottom: 2px solid #000;
  margin: 10px 0;
  padding: 10px;
  font-size: 1em;
  background: none;
  transition: border-bottom 0.3s ease;
  border-radius: 5px 5px 0 0;
}

input:focus,
textarea:focus {
  outline: none;
  border-bottom: 2px solid #6B3E2E;
}

button {
  background-color: #6B3E2E;
  color: white;
  border: none;
  padding: 12px;
  margin-top: 20px;
  font-size: 1em;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

button:hover {
  background-color: #4b2e2e;
  transform: translateY(-2px);
}

#response-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 10px;
  margin-top: 10px;
  font-weight: bold;
  color: #6B3E2E; 
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 1.2em;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons img {
  width: 30px;
  height: 30px;
  transition: transform 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

#circle-transition {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle at center, #4A3B31 0%, #3D2B1F 70%, #1E150F 100%);
  border-radius: 50%;
  z-index: 9999;
  transform: translate(-50%, -50%);
  pointer-events: none;
}


